//
var TN_Widget = function() {
return {
//Options
newWindow : true,
linkText : "view
tickets",
tixUrl : "http://www.ticketnetwork.com/tix/",
trackingParams : "",
custLink : true,
//depricated
kbid : "",
//Overwrittable functions
trackingLink :"",
CreateCustomUrl : function(row) {
return this.tixUrl + row[7] + "-tickets-"+ row[6] + ".aspx";
},
CreateEventRow : function(row, isAlt) {
return "
" +
row[0] +" | " +
row[1] +" " +
row[2] +" | " +
row[3] +" " +
row[4] + " " +
row[5] + " | "+ this.linkText+ " |
";
},
AddCss: function(cssUrl) {
var fileref=document.createElement("link");
fileref.setAttribute("rel", "stylesheet");
fileref.setAttribute("type", "text/css");
fileref.setAttribute("href", cssUrl);
document.getElementsByTagName("head")[0].appendChild(fileref);
},
CreateTable : function(eventData,kywrds,url) {
if(typeof(TN_SetWidgetOptions) == "function")
TN_SetWidgetOptions();
//for backwards compatability
if(this.kbid != "")
this.trackingParams = "?img=249&kbid="+this.kbid;
var newTable = [];
for(var cntr = 0; cntr < eventData.length; cntr++)
newTable.push(this.CreateEventRow(eventData[cntr], cntr % 2 == 1));
var objToAddTo;
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML = '' + newTable.join('') + '
';
} else
document.write('' + newTable.join('') + '
');
if(eventData.length >= 100 && kywrds != undefined) {
if(objToAddTo = document.getElementById("tn_results_container")) {
objToAddTo.innerHTML += '';
} else {
document.write("");
}
}
if(eventData.length > 0) {
document.getElementById("previewNote").style.display = "none";
}
}
};
}();
//BPW-TNSERV-04A
TN_Widget.CreateTable([['A1A - Jimmy Buffett Tribute','Anderson Music Hall','Hiawassee, GA','Saturday','7/19/2025','6:00 PM','7008219','A1A---Jimmy-Buffett-Tribute-7-19-2025'],['Herman's Hermits & Peter Noone','Anderson Music Hall','Hiawassee, GA','Friday','8/15/2025','7:00 PM','6808651','Herman-s-Hermits---Peter-Noone-8-15-2025'],['Crowder','Anderson Music Hall','Hiawassee, GA','Saturday','8/16/2025','7:00 PM','7004443','Crowder-8-16-2025'],['Carolina the Band','Anderson Music Hall','Hiawassee, GA','Sunday','8/17/2025','2:00 PM','7056100','Carolina-the-Band-8-17-2025'],['Gene Watson & The Bellamy Brothers','Anderson Music Hall','Hiawassee, GA','Thursday','8/21/2025','7:00 PM','6838390','Gene-Watson---The-Bellamy-Brothers-8-21-2025'],['Molly Tuttle','Anderson Music Hall','Hiawassee, GA','Friday','8/22/2025','7:00 PM','6861261','Molly-Tuttle-8-22-2025'],['Lorrie Morgan & T. Graham Brown','Anderson Music Hall','Hiawassee, GA','Saturday','8/23/2025','7:00 PM','7008220','Lorrie-Morgan---T--Graham-Brown-8-23-2025'],['John Crist','Anderson Music Hall','Hiawassee, GA','Sunday','9/28/2025','7:00 PM','7071717','John-Crist-9-28-2025'],['Bob Segar Tribute','Anderson Music Hall','Hiawassee, GA','Saturday','10/4/2025','7:00 PM','6808648','Bob-Segar-Tribute-10-4-2025'],['Neal McCoy & Ronnie McDowell','Anderson Music Hall','Hiawassee, GA','Friday','10/10/2025','7:00 PM','6881857','Neal-McCoy---Ronnie-McDowell-10-10-2025'],['Chase Rice','Anderson Music Hall','Hiawassee, GA','Saturday','10/11/2025','7:00 PM','7182470','Chase-Rice-10-11-2025'],['Ricky Skaggs & Kentucky Thunder','Anderson Music Hall','Hiawassee, GA','Thursday','10/16/2025','7:00 PM','7055844','Ricky-Skaggs---Kentucky-Thunder-10-16-2025'],['Josh Turner','Anderson Music Hall','Hiawassee, GA','Friday','10/17/2025','7:00 PM','6991668','Josh-Turner-10-17-2025'],['Both Sides Now: The Music of Joni Mitchell and Leonard Cohen','Anderson Theater At Cincinnati Memorial Hall','Cincinnati, OH','Tuesday','11/4/2025','8:00 PM','7199845','Both-Sides-Now--The-Music-of-Joni-Mitchell-and-Leonard-Cohen-11-4-2025']],'Anderson Music Hall','http://www.ticketnetwork.com/ticket/Anderson-Music-Hall-events.aspx');